+2005-01-13 Matthias Clasen <mclasen@redhat.com>
+
+ * gtk/gtktreeview.c: (gtk_tree_view_class_init),
+ (gtk_tree_view_set_headers_clickable): Make the headers-visible
+ property readwrite instead of just writable, and remove the
+ g_return_if_fail check that there is a model when setting this
+ property. Also improve the blurb. (#163851, Richard Hult)
+
2005-01-12 Owen Taylor <otaylor@redhat.com>
* configure.in: Remove GLIB_DIVERT_BEFORE_HELP() on
+2005-01-13 Matthias Clasen <mclasen@redhat.com>
+
+ * gtk/gtktreeview.c: (gtk_tree_view_class_init),
+ (gtk_tree_view_set_headers_clickable): Make the headers-visible
+ property readwrite instead of just writable, and remove the
+ g_return_if_fail check that there is a model when setting this
+ property. Also improve the blurb. (#163851, Richard Hult)
+
2005-01-12 Owen Taylor <otaylor@redhat.com>
* configure.in: Remove GLIB_DIVERT_BEFORE_HELP() on
+2005-01-13 Matthias Clasen <mclasen@redhat.com>
+
+ * gtk/gtktreeview.c: (gtk_tree_view_class_init),
+ (gtk_tree_view_set_headers_clickable): Make the headers-visible
+ property readwrite instead of just writable, and remove the
+ g_return_if_fail check that there is a model when setting this
+ property. Also improve the blurb. (#163851, Richard Hult)
+
2005-01-12 Owen Taylor <otaylor@redhat.com>
* configure.in: Remove GLIB_DIVERT_BEFORE_HELP() on
g_object_class_install_property (o_class,
PROP_HEADERS_VISIBLE,
g_param_spec_boolean ("headers_visible",
- P_("Visible"),
+ P_("Headers Visible"),
P_("Show the column header buttons"),
TRUE,
G_PARAM_READWRITE));
P_("Headers Clickable"),
P_("Column headers respond to click events"),
FALSE,
- G_PARAM_WRITABLE));
+ G_PARAM_READWRITE));
g_object_class_install_property (o_class,
PROP_EXPANDER_COLUMN,
GList *list;
g_return_if_fail (GTK_IS_TREE_VIEW (tree_view));
- g_return_if_fail (tree_view->priv->model != NULL);
for (list = tree_view->priv->columns; list; list = list->next)
gtk_tree_view_column_set_clickable (GTK_TREE_VIEW_COLUMN (list->data), setting);